home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / wadllib-1.1.2.egg-info / PKG-INFO < prev    next >
Text File  |  2009-08-25  |  25KB  |  599 lines

  1. Metadata-Version: 1.0
  2. Name: wadllib
  3. Version: 1.1.2
  4. Summary: Navigate HTTP resources using WADL files as guides.
  5. Home-page: https://launchpad.net/wadllib
  6. Author: LAZR Developers
  7. Author-email: lazr-developers@lists.launchpad.net
  8. License: LGPL v3
  9. Download-URL: https://launchpad.net/wadllib/+download
  10. Description: ..
  11.         Copyright (C) 2008-2009 Canonical Ltd.
  12.         
  13.         This file is part of wadllib.
  14.         
  15.         wadllib is free software: you can redistribute it and/or modify it under
  16.         the terms of the GNU Lesser General Public License as published by the
  17.         Free Software Foundation, version 3 of the License.
  18.         
  19.         wadllib is distributed in the hope that it will be useful, but WITHOUT ANY
  20.         WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  21.         FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
  22.         more details.
  23.         
  24.         You should have received a copy of the GNU Lesser General Public License
  25.         along with wadllib. If not, see <http://www.gnu.org/licenses/>.
  26.         
  27.         wadllib
  28.         *******
  29.         
  30.         An Application object represents a web service described by a WADL
  31.         file.
  32.         
  33.         >>> import os
  34.         >>> import sys
  35.         >>> import pkg_resources
  36.         >>> from wadllib.application import Application
  37.         
  38.         The first argument to the Application constructor is the URL at which
  39.         the WADL file was found. The second argument may be raw WADL markup.
  40.         
  41.         >>> wadl_string = pkg_resources.resource_string(
  42.         ...     'wadllib.tests.data', 'launchpad-wadl.xml')
  43.         >>> wadl = Application("http://api.launchpad.dev/beta/", wadl_string)
  44.         
  45.         Or the second argument may be an open filehandle containing the markup.
  46.         
  47.         >>> def application_for(filename, url="http://www.example.com/"):
  48.         ...    wadl_stream = pkg_resources.resource_stream(
  49.         ...    'wadllib.tests.data', filename)
  50.         ...    return Application(url, wadl_stream)
  51.         >>> wadl = application_for("launchpad-wadl.xml",
  52.         ...                        "http://api.launchpad.dev/beta/")
  53.         
  54.         
  55.         ===============
  56.         Link navigation
  57.         ===============
  58.         
  59.         The preferred technique for finding a resource is to start at one of
  60.         the resources defined in the WADL file, and follow links. This code
  61.         retrieves the definition of the root resource.
  62.         
  63.         >>> service_root = wadl.get_resource_by_path('')
  64.         >>> service_root.url
  65.         'http://api.launchpad.dev/beta/'
  66.         >>> service_root.type_url
  67.         '#service-root'
  68.         
  69.         The service root resource supports GET.
  70.         
  71.         >>> get_method = service_root.get_method('get')
  72.         >>> get_method.id
  73.         'service-root-get'
  74.         
  75.         >>> get_method = service_root.get_method('GET')
  76.         >>> get_method.id
  77.         'service-root-get'
  78.         
  79.         If we want to invoke this method, we send a GET request to the service
  80.         root URL.
  81.         
  82.         >>> get_method.name
  83.         'get'
  84.         >>> get_method.build_request_url()
  85.         'http://api.launchpad.dev/beta/'
  86.         
  87.         The WADL description of a resource knows which representations are
  88.         available for that resource. In this case, the server root resource
  89.         has a a JSON representation, and it defines parameters like
  90.         'people_collection_link', a link to a list of people in Launchpad. We
  91.         should be able to use the get_parameter() method to get the WADL
  92.         definition of the 'people_collection_link' parameter and find out more
  93.         about it--for instance, is it a link to another resource?
  94.         
  95.         >>> link_name = 'people_collection_link'
  96.         >>> link_parameter = service_root.get_parameter(link_name)
  97.         Traceback (most recent call last):
  98.         ...
  99.         NoBoundRepresentationError: Resource is not bound to any representation, and no media media type was specified.
  100.         
  101.         Oops. The code has no way to know whether 'people_collection_link' is
  102.         a parameter of the JSON representation or some other kind of
  103.         representation. We can pass a media type to get_parameter and let it
  104.         know which representation the parameter lives in.
  105.         
  106.         >>> link_parameter = service_root.get_parameter(
  107.         ...     link_name, 'application/json')
  108.         >>> link_parameter.get_value()
  109.         Traceback (most recent call last):
  110.         ...
  111.         NoBoundRepresentationError: Resource is not bound to any representation.
  112.         
  113.         Oops again. The parameter is available, but it has no value, because
  114.         there's no actual data associated with the resource. The browser can
  115.         look up the description of the GET method to make an actual GET
  116.         request to the service root, and bind the resulting representation to
  117.         the WADL description of the service root.
  118.         
  119.         You can't bind just any representation to a WADL resource description.
  120.         It has to be of a media type understood by the WADL description.
  121.         
  122.         >>> service_root.bind('<html>Some HTML</html>', 'text/html')
  123.         Traceback (most recent call last):
  124.         ...
  125.         UnsupportedMediaTypeError: This resource doesn't define a representation for media type text/html
  126.         
  127.         The WADL description of the service root resource has a JSON
  128.         representation. Here it is.
  129.         
  130.         >>> json_representation = service_root.get_representation_definition(
  131.         ...     'application/json')
  132.         >>> json_representation.media_type
  133.         'application/json'
  134.         
  135.         We already have a WADL representation of the service root resource, so
  136.         let's try binding it to that JSON representation. We use test JSON
  137.         data from a file to simulate the result of a GET request to the
  138.         service root.
  139.         
  140.         >>> def get_testdata(filename):
  141.         ...     return pkg_resources.resource_string(
  142.         ...         'wadllib.tests.data', filename + '.json')
  143.         
  144.         >>> def bind_to_testdata(resource, filename):
  145.         ...     return resource.bind(get_testdata(filename), 'application/json')
  146.         
  147.         The return value is a new Resource object that's "bound" to that JSON
  148.         test data.
  149.         
  150.         >>> bound_service_root = bind_to_testdata(service_root, 'root')
  151.         >>> sorted(bound_service_root.parameter_names())
  152.         ['bugs_collection_link', 'people_collection_link']
  153.         >>> [method.id for method in bound_service_root.method_iter]
  154.         ['service-root-get']
  155.         
  156.         
  157.         Now the bound resource object has a JSON representation, and now
  158.         'people_collection_link' makes sense. We can follow the
  159.         'people_collection_link' to a new Resource object.
  160.         
  161.         >>> link_parameter = bound_service_root.get_parameter(link_name)
  162.         >>> link_parameter.style
  163.         'plain'
  164.         >>> link_parameter.get_value()
  165.         u'http://api.launchpad.dev/beta/people'
  166.         >>> personset_resource = link_parameter.linked_resource
  167.         >>> personset_resource.__class__
  168.         <class 'wadllib.application.Resource'>
  169.         >>> personset_resource.url
  170.         u'http://api.launchpad.dev/beta/people'
  171.         >>> personset_resource.type_url
  172.         'http://api.launchpad.dev/beta/#people'
  173.         
  174.         This new resource is a collection of people.
  175.         
  176.         >>> personset_resource.id
  177.         'people'
  178.         
  179.         The "collection of people" resource supports a standard GET request as
  180.         well as a special GET and an overloaded POST. The get_method() method
  181.         is used to retrieve WADL definitions of the possible HTTP requests you
  182.         might make. Here's how to get the WADL definition of the standard GET
  183.         request.
  184.         
  185.         >>> get_method = personset_resource.get_method('get')
  186.         >>> get_method.id
  187.         'people-get'
  188.         
  189.         The method name passed into get_method() is treated case-insensitively.
  190.         
  191.         >>> personset_resource.get_method('GET').id
  192.         'people-get'
  193.         
  194.         To invoke the special GET request, the client sets the 'ws.op' query
  195.         parameter to the fixed string 'find'.
  196.         
  197.         >>> find_method = personset_resource.get_method(
  198.         ...     query_params={'ws.op' : 'findPerson'})
  199.         >>> find_method.id
  200.         'people-findPerson'
  201.         
  202.         Given an end-user's values for the non-fixed parameters, it's possible
  203.         to get the URL that should be used to invoke the method.
  204.         
  205.         >>> find_method.build_request_url(text='foo')
  206.         u'http://api.launchpad.dev/beta/people?text=foo&ws.op=findPerson'
  207.         
  208.         >>> find_method.build_request_url({'ws.op' : 'findPerson', 'text' : 'bar'})
  209.         u'http://api.launchpad.dev/beta/people?text=bar&ws.op=findPerson'
  210.         
  211.         An error occurs if the end-user gives an incorrect value for a fixed
  212.         parameter value, or omits a required parameter.
  213.         
  214.         >>> find_method.build_request_url()
  215.         Traceback (most recent call last):
  216.         ...
  217.         ValueError: No value for required parameter 'text'
  218.         
  219.         >>> find_method.build_request_url(
  220.         ...     {'ws.op' : 'findAPerson', 'text' : 'foo'})
  221.         ... # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
  222.         Traceback (most recent call last):
  223.         ...
  224.         ValueError: Value 'findAPerson' for parameter 'ws.op' conflicts
  225.         with fixed value 'findPerson'
  226.         
  227.         To invoke the overloaded POST request, the client sets the 'ws.op'
  228.         query variable to the fixed string 'newTeam':
  229.         
  230.         >>> create_team_method = personset_resource.get_method(
  231.         ...     'post', representation_params={'ws.op' : 'newTeam'})
  232.         >>> create_team_method.id
  233.         'people-newTeam'
  234.         
  235.         findMethod() returns None when there's no WADL method matching the
  236.         name or the fixed parameters.
  237.         
  238.         >>> print personset_resource.get_method('nosuchmethod')
  239.         None
  240.         
  241.         >>> print personset_resource.get_method(
  242.         ...     'post', query_params={'ws_op' : 'nosuchparam'})
  243.         None
  244.         
  245.         Let's say the browser makes a GET request to the person set resource
  246.         and gets back a representation. We can bind that representation to our
  247.         description of the person set resource.
  248.         
  249.         >>> bound_personset = bind_to_testdata(personset_resource, 'personset')
  250.         >>> bound_personset.get_parameter("start").get_value()
  251.         0
  252.         >>> bound_personset.get_parameter("total_size").get_value()
  253.         63
  254.         
  255.         We can keep following links indefinitely, so long as we bind to a
  256.         representation to each resource as we get it, and use the
  257.         representation to find the next link.
  258.         
  259.         >>> next_page_link = bound_personset.get_parameter("next_collection_link")
  260.         >>> next_page_link.get_value()
  261.         u'http://api.launchpad.dev/beta/people?ws.start=5&ws.size=5'
  262.         >>> page_two = next_page_link.linked_resource
  263.         >>> bound_page_two = bind_to_testdata(page_two, 'personset-page2')
  264.         >>> bound_page_two.url
  265.         u'http://api.launchpad.dev/beta/people?ws.start=5&ws.size=5'
  266.         >>> bound_page_two.get_parameter("start").get_value()
  267.         5
  268.         >>> bound_page_two.get_parameter("next_collection_link").get_value()
  269.         u'http://api.launchpad.dev/beta/people?ws.start=10&ws.size=5'
  270.         
  271.         Let's say the browser makes a POST request that invokes the 'newTeam'
  272.         named operation. The response will include a number of HTTP headers,
  273.         including 'Location', which points the way to the newly created team.
  274.         
  275.         >>> headers = { 'Location' : 'http://api.launchpad.dev/~newteam' }
  276.         >>> response = create_team_method.response.bind(headers)
  277.         >>> location_parameter = response.get_parameter('Location')
  278.         >>> location_parameter.get_value()
  279.         'http://api.launchpad.dev/~newteam'
  280.         >>> new_team = location_parameter.linked_resource
  281.         >>> new_team.url
  282.         'http://api.launchpad.dev/~newteam'
  283.         >>> new_team.type_url
  284.         'http://api.launchpad.dev/beta/#team'
  285.         
  286.         ======================
  287.         Resource instantiation
  288.         ======================
  289.         
  290.         If you happen to have the URL to an object lying around, and you know
  291.         its type, you can construct a Resource object directly instead of
  292.         by following links.
  293.         
  294.         >>> from wadllib.application import Resource
  295.         >>> limi_person = Resource(wadl, "http://api.launchpad.dev/beta/~limi",
  296.         ...     "http://api.launchpad.dev/beta/#person")
  297.         >>> sorted([method.id for method in limi_person.method_iter])[:3]
  298.         ['person-acceptInvitationToBeMemberOf', 'person-addMember', 'person-declineInvitationToBeMemberOf']
  299.         
  300.         >>> bound_limi = bind_to_testdata(limi_person, 'person-limi')
  301.         >>> sorted(bound_limi.parameter_names())[:3] # doctest: +NORMALIZE_WHITESPACE
  302.         ['admins_collection_link', 'confirmed_email_addresses_collection_link',
  303.         'date_created']
  304.         >>> languages_link = bound_limi.get_parameter("languages_collection_link")
  305.         >>> languages_link.get_value()
  306.         u'http://api.launchpad.dev/beta/~limi/languages'
  307.         
  308.         You can bind a Resource to a representation when you create it.
  309.         
  310.         >>> limi_data = get_testdata('person-limi')
  311.         >>> bound_limi = Resource(
  312.         ...     wadl, "http://api.launchpad.dev/beta/~limi",
  313.         ...     "http://api.launchpad.dev/beta/#person", limi_data,
  314.         ...     "application/json")
  315.         >>> bound_limi.get_parameter("languages_collection_link").get_value()
  316.         u'http://api.launchpad.dev/beta/~limi/languages'
  317.         
  318.         By default the representation is treated as a string and processed
  319.         according to the media type you pass into the Resource constructor. If
  320.         you've already processed the representation, pass in False for the
  321.         'representation_needs_processing' argument.
  322.         
  323.         >>> import simplejson
  324.         >>> processed_limi_data = simplejson.loads(unicode(limi_data))
  325.         >>> bound_limi = Resource(wadl, "http://api.launchpad.dev/beta/~limi",
  326.         ...     "http://api.launchpad.dev/beta/#person", processed_limi_data,
  327.         ...     "application/json", False)
  328.         >>> bound_limi.get_parameter("languages_collection_link").get_value()
  329.         u'http://api.launchpad.dev/beta/~limi/languages'
  330.         
  331.         Most of the time, the representation of a resource is of the type
  332.         you'd get by sending a standard GET to that resource. If that's not
  333.         the case, you can specify a RepresentationDefinition as the
  334.         'representation_definition' argument to bind() or the Resource
  335.         constructor, to show what the representation really looks like. Here's
  336.         an example.
  337.         
  338.         There's a method on a person resource such as bound_limi that's
  339.         identified by a distinctive query argument: ws.op=getMembersByStatus.
  340.         
  341.         >>> method = bound_limi.get_method(
  342.         ...     query_params={'ws.op' : 'findPathToTeam'})
  343.         
  344.         Invoke this method with a GET request and you'll get back a page from
  345.         a list of people.
  346.         
  347.         >>> people_page_repr_definition = (
  348.         ...     method.response.get_representation_definition('application/json'))
  349.         >>> people_page_repr_definition.tag.attrib['href']
  350.         'http://api.launchpad.dev/beta/#person-page'
  351.         
  352.         As it happens, we have a page from a list of people to use as test data.
  353.         
  354.         >>> people_page_repr = get_testdata('personset')
  355.         
  356.         If we bind the resource to the result of the method invocation as
  357.         happened above, we don't be able to access any of the parameters we'd
  358.         expect. wadllib will think the representation is of type
  359.         'person-full', the default GET type for bound_limi.
  360.         
  361.         >>> bad_people_page = bound_limi.bind(people_page_repr)
  362.         >>> print bad_people_page.get_parameter('total_size')
  363.         None
  364.         
  365.         Since we don't actually have a 'person-full' representation, we won't
  366.         be able to get values for the parameters of that kind of
  367.         representation.
  368.         
  369.         >>> bad_people_page.get_parameter('name').get_value()
  370.         Traceback (most recent call last):
  371.         ...
  372.         KeyError: 'name'
  373.         
  374.         So that's a dead end. *But*, if we pass the correct representation
  375.         type into bind(), we can access the parameters associated with a
  376.         'person-page' representation.
  377.         
  378.         >>> people_page = bound_limi.bind(
  379.         ...     people_page_repr,
  380.         ...     representation_definition=people_page_repr_definition)
  381.         >>> people_page.get_parameter('total_size').get_value()
  382.         63
  383.         
  384.         If you invoke the method and ask for a media type other than JSON, you
  385.         won't get anything.
  386.         
  387.         >>> print method.response.get_representation_definition('text/html')
  388.         None
  389.         
  390.         Data type conversion
  391.         ====================
  392.         
  393.         The values of date and dateTime parameters are automatically converted to
  394.         Python datetime objects.
  395.         
  396.         >>> data_type_wadl = application_for('data-types-wadl.xml')
  397.         >>> service_root = data_type_wadl.get_resource_by_path('')
  398.         
  399.         >>> representation = simplejson.dumps(
  400.         ...     {'a_date': '2007-10-20',
  401.         ...      'a_datetime': '2005-06-06T08:59:51.619713+00:00'})
  402.         >>> bound_root = service_root.bind(representation, 'application/json')
  403.         
  404.         >>> bound_root.get_parameter('a_date').get_value()
  405.         datetime.datetime(2007, 10, 20, 0, 0)
  406.         >>> bound_root.get_parameter('a_datetime').get_value() # doctest: +ELLIPSIS
  407.         datetime.datetime(2005, 6, 6, 8, ...)
  408.         
  409.         A 'date' field can include a timestamp, and a 'datetime' field can
  410.         omit one. wadllib will turn both into datetime objects.
  411.         
  412.         >>> representation = simplejson.dumps(
  413.         ...     {'a_date': '2005-06-06T08:59:51.619713+00:00',
  414.         ...      'a_datetime': '2007-10-20'})
  415.         >>> bound_root = service_root.bind(representation, 'application/json')
  416.         
  417.         >>> bound_root.get_parameter('a_datetime').get_value()
  418.         datetime.datetime(2007, 10, 20, 0, 0)
  419.         >>> bound_root.get_parameter('a_date').get_value() # doctest: +ELLIPSIS
  420.         datetime.datetime(2005, 6, 6, 8, ...)
  421.         
  422.         If a date or dateTime parameter has a null value, you get None. If the
  423.         value is a string that can't be parsed to a datetime object, you get a
  424.         ValueError.
  425.         
  426.         >>> representation = simplejson.dumps(
  427.         ...     {'a_date': 'foo', 'a_datetime': None})
  428.         >>> bound_root = service_root.bind(representation, 'application/json')
  429.         >>> bound_root.get_parameter('a_date').get_value()
  430.         Traceback (most recent call last):
  431.         ...
  432.         ValueError: foo
  433.         >>> print bound_root.get_parameter('a_datetime').get_value()
  434.         None
  435.         
  436.         =======================
  437.         Representation creation
  438.         =======================
  439.         
  440.         You must provide a representation when invoking certain methods. The
  441.         representation() method helps you build one without knowing the
  442.         details of how a representation is put together.
  443.         
  444.         >>> create_team_method.build_representation(
  445.         ...     display_name='Joe Bloggs', name='joebloggs')
  446.         ('application/x-www-form-urlencoded', 'display_name=Joe+Bloggs&ws.op=newTeam&name=joebloggs')
  447.         
  448.         The return value of build_representation is a 2-tuple containing the
  449.         media type of the built representation, and the string representation
  450.         itself. Along with the resource's URL, this is all you need to send
  451.         the representation to a web server.
  452.         
  453.         >>> bound_limi.get_method('patch').build_representation(name='limi2')
  454.         ('application/json', '{"name": "limi2"}')
  455.         
  456.         Representations may require values for certain parameters.
  457.         
  458.         >>> create_team_method.build_representation()
  459.         Traceback (most recent call last):
  460.         ...
  461.         ValueError: No value for required parameter 'display_name'
  462.         
  463.         >>> bound_limi.get_method('put').build_representation(name='limi2')
  464.         Traceback (most recent call last):
  465.         ...
  466.         ValueError: No value for required parameter 'mugshot_link'
  467.         
  468.         Some representations may safely include binary data.
  469.         
  470.         >>> binary_stream = pkg_resources.resource_stream(
  471.         ...     'wadllib.tests.data', 'multipart-binary-wadl.xml')
  472.         >>> binary_wadl = Application(
  473.         ...     "http://www.example.com/", binary_stream)
  474.         >>> service_root = binary_wadl.get_resource_by_path('')
  475.         
  476.         >>> method = service_root.get_method('post', 'multipart/form-data')
  477.         >>> media_type, doc = method.build_representation(
  478.         ...     text_field="text", binary_field="\x01\x02")
  479.         >>> print media_type
  480.         multipart/form-data; boundary=...
  481.         >>> print doc
  482.         MIME-Version: 1.0
  483.         Content-Type: multipart/form-data; boundary="..."
  484.         <BLANKLINE>
  485.         --...
  486.         Content-Type: text/plain; charset="utf-8"
  487.         MIME-Version: 1.0
  488.         Content-Disposition: form-data; name="text_field"
  489.         <BLANKLINE>
  490.         text
  491.         --...
  492.         Content-Type: application/octet-stream
  493.         MIME-Version: 1.0
  494.         Content-Disposition: form-data; name="binary_field"
  495.         <BLANKLINE>
  496.         ...
  497.         --...
  498.         >>> '\x01\x02' in doc
  499.         True
  500.         
  501.         >>> method = service_root.get_method('post', 'text/unknown')
  502.         >>> method.build_representation(field="value")
  503.         Traceback (most recent call last):
  504.         ...
  505.         ValueError: Unsupported media type: 'text/unknown'
  506.         
  507.         =======
  508.         Options
  509.         =======
  510.         
  511.         Some parameters take values from a predefined list of options.
  512.         
  513.         >>> option_wadl = application_for('options-wadl.xml')
  514.         >>> definitions = option_wadl.representation_definitions
  515.         >>> service_root = option_wadl.get_resource_by_path('')
  516.         >>> definition = definitions['service-root-json']
  517.         >>> param = definition.params(service_root)[0]
  518.         >>> print param.name
  519.         has_options
  520.         >>> sorted([option.value for option in param.options])
  521.         ['Value 1', 'Value 2']
  522.         
  523.         Such parameters cannot take values that are not in the list.
  524.         
  525.         >>> definition.validate_param_values(
  526.         ...     [param], {'has_options': 'Value 1'})
  527.         {'has_options': 'Value 1'}
  528.         
  529.         >>> definition.validate_param_values(
  530.         ...     [param], {'has_options': 'Invalid value'})
  531.         Traceback (most recent call last):
  532.         ...
  533.         ValueError: Invalid value 'Invalid value' for parameter
  534.         'has_options': valid values are: "Value 1", "Value 2"
  535.         
  536.         
  537.         ================
  538.         Error conditions
  539.         ================
  540.         
  541.         You'll get None if you try to look up a nonexistent resource.
  542.         
  543.         >>> print wadl.get_resource_by_path('nosuchresource')
  544.         None
  545.         
  546.         You'll get an exception if you try to look up a nonexistent resource
  547.         type.
  548.         
  549.         >>> print wadl.get_resource_type('#nosuchtype')
  550.         Traceback (most recent call last):
  551.         KeyError: 'No such XML ID: "#nosuchtype"'
  552.         
  553.         You'll get None if you try to look up a method whose parameters don't
  554.         match any defined method.
  555.         
  556.         >>> print bound_limi.get_method(
  557.         ...     'post', representation_params={ 'foo' : 'bar' })
  558.         None
  559.         
  560.         .. toctree::
  561.         :glob:
  562.         
  563.         *
  564.         docs/*
  565.         
  566.         ================
  567.         NEWS for wadllib
  568.         ================
  569.         
  570.         1.1.2 (2009-08-20)
  571.         ==================
  572.         
  573.         - Consistently handle different versions of simplejson.
  574.         
  575.         1.1.1 (2009-07-14)
  576.         ==================
  577.         
  578.         - Make wadllib aware of the <option> tags that go beneath <param> tags.
  579.         
  580.         1.1 (2009-07-09)
  581.         ================
  582.         
  583.         - Make wadllib capable of recognizing and generating
  584.         multipart/form-data representations, including representations that
  585.         incorporate binary parameters.
  586.         
  587.         
  588.         1.0 (2009-03-23)
  589.         ================
  590.         
  591.         - Initial release on PyPI
  592.         
  593. Platform: UNKNOWN
  594. Classifier: Development Status :: 5 - Production/Stable
  595. Classifier: Intended Audience :: Developers
  596. Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
  597. Classifier: Operating System :: OS Independent
  598. Classifier: Programming Language :: Python
  599.